home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CICA Windows Explosion!
/
The CICA Windows Explosion! - Disc 2.iso
/
programr
/
ptrp25dm.zip
/
ETEST8.TRP
< prev
next >
Wrap
Text File
|
1995-03-07
|
475b
|
22 lines
var
b : bool = false;
endVar
procedure main
if (b)
writeln('A');
if (not b)
writeln('E')
else
writeln('F');
endif
else
if (not b)
writeln('B')
else
writeln('C');
endif
writeln('D');
endif
endProc